home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / DMT4400.M4 < prev    next >
Text File  |  1996-04-01  |  4KB  |  146 lines

  1. name DynaMyte 4 axis 4400
  2.  
  3. O >4
  4. L >4
  5. N >4
  6. G >2
  7. X ->3.>4
  8. Y ->3.>4
  9. Z ->3.>4
  10. U ->3.>3
  11. I ->3.>4
  12. J ->3.>4
  13. Q ->3.>4
  14. R ->3.>4
  15. P ->3.>4
  16. F >3.1
  17. K ->3.>4
  18. H >2
  19. D >2
  20. T >2
  21. M >2
  22. S ->3.>3
  23. E ->3.>3
  24.  
  25. ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85  # List of g codes that are modal    
  26.  
  27. ModalLetters X Y Z F                  # List of letters that are modal    
  28.  
  29. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  30.  
  31. Spaces? Y                             # Y or N  'Spaces between words     
  32.  
  33. HCode X                               # X or X U  'Horizontal char.       
  34. VCode Y                               # Y or Y V  'Vertical char.         
  35. Dcode Z                               # Depth char.                       
  36. FeedCode F                            # Feed rate char.                   
  37.  
  38. Comment ( )                           # Begin End comment char.           
  39.  
  40. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  41. Coolant 8 9 7                         # On, Off & Mist m codes            
  42. DComp 41 42 40                        # Left, Right & Cancel m codes      
  43. LComp 43 49                           # On & Off codes                    
  44. Feed G1                             # Linear move                       
  45. Rapid G0                            # Rapid positioning word            
  46.  
  47. Spaces? N                             # Y or N  'Spaces between words     
  48. Incremental? N                        # Y or N  'Inc or abs output        
  49. CtrIncremental? N                     # Y or N  'Inc or abs I & J         
  50. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  51.  
  52. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  53.  
  54. Work G                                # Work offset register              
  55.  
  56. CtrCode I J                           # I J or R or I J K L               
  57. Helical? N
  58.  
  59. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  60.  
  61.  
  62. LTap                                  # Left handed tapping cycle         
  63. G74 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  64. end cancel
  65.  
  66. Drill                                 # Drilling canned/manual cycle      
  67. G81 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  68. end cancel
  69.  
  70. Peck                                  # Pecking canned/manual cycle       
  71. G83 X[H] Y[V] Z[D] Q[VBite] R[Vclear] F[FRate]
  72. end cancel
  73.  
  74. Tap                                   # Tapping canned/manual cycle       
  75. G84 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  76. end cancel
  77.  
  78. Ream                                  # Reaming canned/manual cycle       
  79. G85 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  80. end cancel
  81.  
  82. Bore                                  # Boring canned/manual cycle        
  83. G86 X[H] Y[V] Z[D] Q[Sclear] R[Vclear] F[FRate]
  84. end cancel
  85.  
  86. Back                                  # Back boring canned/manual cycle   
  87. G87 X[H] Y[V] Z[D] Q[Sclear] R[Vclear] F[FRate]
  88. end cancel
  89.  
  90. Cancel                                # Cancel a canned/manual cycle      
  91. G80
  92. end
  93.  
  94. Index X                               # Index the rotary table            
  95. X[H] Y[V] U[RotAngle]
  96. end
  97.  
  98. UnWind                                # Unwind the rotary table           
  99. G0 Z[VClear]
  100. U0
  101. U[LastRotAng]
  102. G1 Z[LastD]
  103. end
  104.  
  105. StartCode                             # Start of the program              
  106. O[Program#]
  107. M5
  108. End
  109.  
  110. 1stToolChange                         # First tool change                 
  111. N[Block] T[Tool] M6
  112. F[FRate]
  113. G92
  114. M3
  115. End
  116.  
  117. Infeed                                # Enable cutter comp                
  118. G1 Z[D] F[Plunge]
  119. G[Side] X[H] Y[V] H[DComp] F[FRate]
  120. end
  121.  
  122. Outfeed                               # Disable cutter comp               
  123. G1 G40 X[H] Y[V]
  124. Z[D]
  125. end
  126.  
  127. ToolChange                            # Secondary tool changes            
  128. N[Block] T[Tool] M6
  129. F[FRate]
  130. G92
  131. M3
  132. End
  133.  
  134. EndCode                               # End of the program                
  135. M5
  136. M2
  137. End
  138.  
  139. CwCode                                # CW circular move                  
  140. G2 I[IVal] J[JVal] S[StartAng] E[EndAng]
  141. end
  142.  
  143. CcwCode                               # CCW circular move                 
  144. G3 I[IVal] J[JVal] S[StartAng] E[EndAng]
  145. end
  146.